home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue29 / art_tips / ART_TIPS.ZIP / Tips / Examples / Win16 / smpltips.DPR next >
Encoding:
Text File  |  1997-06-04  |  167 b   |  13 lines

  1. program Smpltips;
  2.  
  3. uses
  4.   Forms,
  5.   Unitmain in 'UNITMAIN.PAS' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.